home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SuperHack
/
SuperHack CD.bin
/
CODING
/
DELPHI
/
DATASORC.ZIP
/
TEST.DP_
/
TEST.DP
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-26
|
210 b
|
14 lines
program Test;
uses
Forms,
Main in 'MAIN.PAS' {MainForm},
Employee in 'EMPLOYEE.PAS' {EmployeeForm};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.